home *** CD-ROM | disk | FTP | other *** search
/ Space & Astronomy / Space and Astronomy (October 1993).iso / mac / VIEWERS / X11 / XLOADIMG.TAR / cmuwmraster.h < prev    next >
C/C++ Source or Header  |  1991-05-20  |  314b  |  18 lines

  1. /* cmuwmraster.h
  2.  *
  3.  * this describes the header for ITC (CMU WM) raster files. It is
  4.  * essentially a byte reversed Sun raster, 1 plane, no encoding.
  5.  */
  6.  
  7. #include "copyright.h"
  8.  
  9. struct cmuwm_header
  10. {
  11.     byte magic[4];
  12.     byte width[4];
  13.     byte height[4];
  14.     byte depth[2];
  15. };
  16.  
  17. #define CMUWM_MAGIC 0xf10040bb
  18.